home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Champak 141
/
(Vol 141) Oct 17 2011.iso
/
Games
/
frantic.swf
/
scripts
/
CMG_AS3
/
ServerResponseEvent.as
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
2011-10-17
|
339 b
|
18 lines
package CMG_AS3
{
import flash.events.Event;
public class ServerResponseEvent extends Event
{
public var returnCode:uint;
public function ServerResponseEvent(param1:String, param2:uint)
{
super(param1,false,false);
returnCode = param2;
}
}
}